home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / programer2 / pari2 / pari / other / versionspa < prev   
Text File  |  1991-11-28  |  250b  |  15 lines

  1. #include "genpari.h"
  2.  
  3. void printversion()
  4. {
  5.   pariputs("             GP/PARI CALCULATOR Version 1.36\n");
  6.   pariputs("                     (Sparc version)\n");
  7. }
  8.  
  9. int mulmodll(a,b,c)
  10.      ulong a,b,c;
  11. {
  12.   divll(mulll(a,b),c);
  13.   return hiremainder;
  14. }
  15.